home *** CD-ROM | disk | FTP | other *** search
/ Mesolore / Mesolore - Disc 2.iso / mac / data / Atlas.dir / 00099_Script_99 < prev    next >
Text File  |  2001-01-26  |  277b  |  13 lines

  1. Global gLectureText
  2. on mouseDown
  3.   btnDown
  4. end
  5. on MouseUp
  6.   gLectureText = not gLectureText
  7.   if gLectureText then
  8.     set the member of sprite 5 = "check_x"
  9.   else
  10.     set the member of sprite 5 = "check_n"
  11.   end if
  12.   set the visible of sprite 3 = gLectureText
  13. end